home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / INTERNET / ANIMATOR.ZIP / README.TXT < prev    next >
Encoding:
Text File  |  1996-04-29  |  5.8 KB  |  127 lines

  1. *****************************************************************
  2. *                                                               *
  3. *                           animator(F2.2)                      *
  4. *                            Java Applet                        *
  5. *                         Written by Mark Qian                  *
  6. *                                                               *
  7. *****************************************************************
  8.  
  9.    
  10.  
  11.  
  12. ANIMATOR is an appelt written by Mark Qian. It displays an user-specified
  13. animated image with sound.  It plays a user-specified sound(an au file) 
  14. when mouse cursor moves over the applet area. It also provides a on_click
  15. function to open a given URL address.  In additional, it allows you display a
  16. message in the status bar when mouse cursor move over the applet. 
  17. animator is an AdWare at this time.
  18.      
  19.  
  20. PARAMETERS:
  21. ==========
  22.          RegistrationCode - The Code that enable you to customize the applet
  23.          speed       - the speed of animation.
  24.          animatemode=0  Animation is always on;
  25.                     =1  Animation is on only when mouse cursor moves over it;
  26.                         (This mode allows you increase the performance of your system.)
  27.                     =2  Animation is on only when it is clicked and the animation
  28.                         will be played only once.(This mode is useful when you try to
  29.                         show some action such as opening a door. 
  30.                     =3  A mouse click only cause animator to switch frame once.
  31.                         (This mode is useful when you try to illustrate a series of 
  32.                         pictures.)    
  33.                     =4  Animation is always on except mouse cursor within Animator;                         
  34.          imgname     - the names of image files including their paths.  For example,
  35.                        if you like to place image file named myimage_1.gif, myimage_2.gif,
  36.                        ..., myimage_n.gif in a directory named images, you need to assign
  37.                        a following value to imgname:  value=images/myimage_
  38.          nimgs       - number of images used for animation.  
  39.          audiofile   - the audio file that should reside in
  40.                        the directory where the applet resides.
  41.          on_click    - an URL address whose content will be opened by browser
  42.                        when clicking at the applet.  Just set it to "" to disable it.
  43.        
  44.  
  45.             
  46.             
  47.  
  48. INSTALLATION:
  49. ============           
  50.           
  51. If you are a webmaster or experienced person, just follow the brief
  52. instructions below. 
  53.  
  54. IMPORTANT:
  55. =========
  56.    
  57.    *********************************************************************************
  58.    *                                                                               *
  59.    *   If you are NOT familiar with Java applet installation and Unix environment, *
  60.    *   Please follow the detail instructions in                                    *
  61.    *                                                                               *
  62.    *   http://ourworld.compuserve.com/homepages/mark_qian                          *
  63.    *                                                                               *
  64.    *   to install it.  Don't try it youself.                                       *
  65.    *                                                                               *
  66.    *********************************************************************************
  67.  
  68.  
  69.  
  70. BRIEF INSTRUCTIONS (for experienced people only):
  71. ==================
  72.   
  73.   0). Unzip animator.zip in your local machine (you had done this step).
  74.   
  75.   
  76.   1). Rename class files. Because PKUNZIP will extract the
  77.       class file, animator.class, to ANIMAT~1.CLA,  you have to RENAME 
  78.       the class file to animator.class.  Similarly, rename LOAD~1.CLA 
  79.       to load.class. NOTE: They are case sensitive and name of 
  80.       the second class is load.class instead of loadimage.class
  81.       nor loading.class).          
  82.   
  83.   2). Open TEST_ANI.HTM with your browser locally. If it works locally,
  84.       go to next step.  Otherwise, go to Mark's home page for detail
  85.       instructions.
  86.       
  87.   3). Try TEST_ANI.HTM online(Ignore this step if you think that you 
  88.       REALLY know what to do). 
  89.   
  90.          - place animator.class and load.class in the place you want in your server.
  91.            (FTP program may change animator.class to animator.cla. Rename class files
  92.             if needed).
  93.          - place TEST_ANI.HTM, MAIL*.GIF, and EMAIL.AU to the same directory
  94.          - change access attributes of all the files above to readable(744)
  95.          - Browse TEST_ANI.HTM from your local machine
  96.          
  97.       If it works, go to next step.  Otherwise Go to Mark's page for instructions.
  98.          
  99.    
  100.    4).Use your own stuff
  101.          
  102.          - add following HTML statements into your HTML's body  
  103.  
  104.             <applet code="animator.class" width=103 height=50>
  105.             <param name=speed value="9">   
  106.             <param name=RegistrationCode value="f2.0-5784957">
  107.             <param name=imgname value="MAIL">
  108.             <param name=nimgs value="13"> 
  109.             <param name=audiofile value="EMAIL.AU"> 
  110.             <param name=status_text value=""> 
  111.             <param name=on_click value="http://www.aimnet.com/~markqian/mark.html"> 
  112.             </applet>
  113.  
  114.   
  115.   
  116.       - replace parametes such as "on_click", "imgname", "audiofile" with your stuff.
  117.   
  118.   
  119.   5). If it works, enjoy it!! (If you like to do its hard-working author a favor, Drop him an 
  120.       Email to let Mark know It runs OK).  Otherwise, go to Mark's page for detail instructions
  121.       of troubleshooting.
  122.  
  123.  
  124.     
  125. Go Mark's Home Page(http://ourworld.compuserve.com/homepages/mark_qian") to see more exciting applets!
  126.  
  127.